home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / skel / .bashrc < prev    next >
Text File  |  2006-04-25  |  976b  |  33 lines

  1. # /etc/skel/.bashrc:
  2. #
  3. # This file is sourced by all *interactive* bash shells on startup,
  4. # including some apparently interactive shells such as scp and rcp
  5. # that can't tolerate any output.  So make sure this doesn't display
  6. # anything or bad things will happen !
  7.  
  8.  
  9. # Test for an interactive shell.  There is no need to set anything
  10. # past this point for scp and rcp, and it's important to refrain from
  11. # outputting anything in those cases.
  12. if [[ $- != *i* ]] ; then
  13.     # Shell is non-interactive.  Be done now!
  14.     return
  15. fi
  16.  
  17. # Enable colors for ls, etc.  Prefer ~/.dir_colors #64489
  18. if [[ -f ~/.dir_colors ]]; then
  19.     eval `dircolors -b ~/.dir_colors`
  20. else
  21.     eval `dircolors -b /etc/DIR_COLORS`
  22. fi
  23.  
  24. # Change the window title of X terminals 
  25. case ${TERM} in
  26.     xterm*|rxvt*|Eterm|aterm|kterm|gnome)
  27.         PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
  28.         ;;
  29.     screen)
  30.         PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
  31.         ;;
  32. esac
  33.